about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/constantly/default.nix
blob: 189573699b9159f74e6c9259491fcfe48fcbc8fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
  pname = "constantly";
  version = "15.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq";
  };

  meta = with lib; {
    homepage = "https://github.com/twisted/constantly";
    description = "symbolic constant support";
    license = licenses.mit;
    maintainers = [ ];
  };
}