nixpkgs/pkgs/development/python-modules/cock/default.nix
2022-10-05 12:18:44 +00:00

20 lines
481 B
Nix

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