My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/cock/default.nix

19 lines
493 B

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