mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
19 lines
426 B
Nix
19 lines
426 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "constantly";
|
|
version = "15.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/twisted/constantly";
|
|
description = "symbolic constant support";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|