1{ lib, buildPythonPackage, fetchPypi, click, sortedcontainers, pyyaml }:
2
3buildPythonPackage rec {
4 pname = "cock";
5 version = "0.11.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "sha256-Hi8aFxATsYcEO6qNzZnF73V8WLTQjb6Dw2xF4VgT2o4=";
10 };
11
12 propagatedBuildInputs = [ click sortedcontainers pyyaml ];
13
14 meta = with lib; {
15 homepage = "https://github.com/pohmelie/cock";
16 description = "Configuration file with click";
17 license = licenses.mit;
18 };
19}