nixpkgs/pkgs/development/python-modules/cock/default.nix
2024-05-22 17:32:03 +02:00

32 lines
531 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
click,
sortedcontainers,
pyyaml,
}:
buildPythonPackage rec {
pname = "cock";
version = "0.11.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Hi8aFxATsYcEO6qNzZnF73V8WLTQjb6Dw2xF4VgT2o4=";
};
propagatedBuildInputs = [
click
sortedcontainers
pyyaml
];
meta = with lib; {
homepage = "https://github.com/pohmelie/cock";
description = "Configuration file with click";
license = licenses.mit;
};
}