pythonPackages.hypchat : move to separate expression
This commit is contained in:
parent
43acfe0f49
commit
6ba7b4c672
|
@ -0,0 +1,15 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
|
, requests, six, dateutil }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hypchat";
|
||||||
|
version = "0.21";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests six dateutil ];
|
||||||
|
}
|
|
@ -28185,29 +28185,7 @@ EOF
|
||||||
|
|
||||||
tempora= callPackage ../development/python-modules/tempora { };
|
tempora= callPackage ../development/python-modules/tempora { };
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
hypchat = callPackage ../development/python-modules/hypchat { };
|
||||||
url = "mirror://pypi/t/tempora/${name}.tar.gz";
|
|
||||||
sha256 = "0ysvns22i5hzhl5ln4n86bq10j8xwvd09z8qw1zjr3s0fj3lynza";
|
|
||||||
};
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
buildInputs = with self; [ setuptools_scm ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ six ];
|
|
||||||
};
|
|
||||||
|
|
||||||
hypchat = buildPythonPackage rec {
|
|
||||||
name = "hypchat-${version}";
|
|
||||||
version = "0.21";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/h/hypchat/${name}.tar.gz";
|
|
||||||
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ requests six dateutil ];
|
|
||||||
};
|
|
||||||
|
|
||||||
pivy = buildPythonPackage rec {
|
pivy = buildPythonPackage rec {
|
||||||
version = "20101207";
|
version = "20101207";
|
||||||
|
|
Loading…
Reference in New Issue