about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cock/default.nix
blob: 762521b0c8671ab690429a8b06f47a61e93fc6aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  lib,
  buildPythonPackage,
  fetchPypi,
  click,
  sortedcontainers,
  pyyaml,
}:

buildPythonPackage rec {
  pname = "cock";
  version = "0.11.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Hi8aFxATsYcEO6qNzZnF73V8WLTQjb6Dw2xF4VgT2o4=";
  };

  propagatedBuildInputs = [
    click
    sortedcontainers
    pyyaml
  ];

  meta = with lib; {
    homepage = "https://github.com/pohmelie/cock";
    description = "Configuration file with click";
    license = licenses.mit;
  };
}