mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
566 B
Nix
23 lines
566 B
Nix
{ stdenv, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "remarshal";
|
|
version = "0.10.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1prpczb8q996i5sf27vfmp0nv85zwsiajnf9jbjkhm0k21wfvmdd";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
dateutil pytoml pyyaml
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Convert between TOML, YAML and JSON";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/dbohdan/remarshal";
|
|
maintainers = with maintainers; [ offline ];
|
|
};
|
|
}
|