Files
nixpkgs/pkgs/development/python-modules/constantly/default.nix
T

19 lines
424 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ stdenv, buildPythonPackage, fetchPypi
2017-04-26 14:26:34 +02:00
}:
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "constantly";
2017-04-26 14:26:34 +02:00
version = "15.1.0";
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-04-26 14:26:34 +02:00
sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq";
};
meta = with stdenv.lib; {
homepage = https://github.com/twisted/constantly;
description = "symbolic constant support";
license = licenses.mit;
maintainers = [ ];
};
}