3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/remarshal/default.nix

23 lines
592 B
Nix
Raw Normal View History

{ stdenv, python3Packages, fetchFromGitHub }:
2015-11-16 11:59:30 +00:00
python3Packages.buildPythonApplication rec {
pname = "remarshal";
2019-04-04 10:06:13 +01:00
version = "0.9.1";
2015-11-16 11:59:30 +00:00
2019-04-04 10:06:13 +01:00
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "564ffe9cbde85bd28a9c184b90c764abd2003abd6101a30802262198b5c7fc40";
2015-11-16 11:59:30 +00:00
};
propagatedBuildInputs = with python3Packages; [
dateutil pytoml pyyaml
2016-12-30 11:03:47 +00:00
];
2015-11-16 11:59:30 +00:00
2016-12-30 11:03:47 +00:00
meta = with stdenv.lib; {
2015-11-16 11:59:30 +00:00
description = "Convert between TOML, YAML and JSON";
license = licenses.mit;
homepage = https://github.com/dbohdan/remarshal;
maintainers = with maintainers; [ offline ];
};
}