19 lines
481 B
Nix
19 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;
|
|
};
|
|
}
|