pythonPakcages.twitter-common-collections: refactor move to python-modules
This commit is contained in:
parent
14a2378036
commit
0d041c02ef
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, twitter-common-lang
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "twitter.common.collections";
|
||||||
|
version = "0.3.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0wf8ks6y2kalx2inzayq0w4kh3kg25daik1ac7r6y79i03fslsc5";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ twitter-common-lang ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Twitter's common collections";
|
||||||
|
homepage = "https://twitter.github.io/commons/";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ copumpkin ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -4013,25 +4013,7 @@ in {
|
|||||||
|
|
||||||
twitter = callPackage ../development/python-modules/twitter { };
|
twitter = callPackage ../development/python-modules/twitter { };
|
||||||
|
|
||||||
twitter-common-collections = buildPythonPackage rec {
|
twitter-common-collections = callPackage ../development/python-modules/twitter-common-collections { };
|
||||||
pname = "twitter.common.collections";
|
|
||||||
version = "0.3.9";
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = self.fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "0wf8ks6y2kalx2inzayq0w4kh3kg25daik1ac7r6y79i03fslsc5";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ twitter-common-lang ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Twitter's common collections";
|
|
||||||
homepage = "https://twitter.github.io/commons/";
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ copumpkin ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
twitter-common-confluence = buildPythonPackage rec {
|
twitter-common-confluence = buildPythonPackage rec {
|
||||||
pname = "twitter.common.confluence";
|
pname = "twitter.common.confluence";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user