depot/third_party/nixpkgs/pkgs/development/python-modules/cock/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 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;
};
}