11e147d3d1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/remarshal/versions
23 lines
564 B
Nix
23 lines
564 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 ];
|
|
};
|
|
}
|