mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
20 lines
481 B
Nix
20 lines
481 B
Nix
{ lib, buildPythonPackage, fetchPypi, click, sortedcontainers, pyyaml }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cock";
|
|
version = "0.10.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-B6r6+b+x5vEp4+yfhV03dfjlVjRbW2W6Pm91PC0Tb+o=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ click sortedcontainers pyyaml ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pohmelie/cock";
|
|
description = "Configuration file with click";
|
|
license = licenses.mit;
|
|
};
|
|
}
|