depot/third_party/nixpkgs/pkgs/development/python-modules/cock/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

19 lines
493 B
Nix

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