pythonPackages.twitter-common-lang: refactor move to python-modules
This commit is contained in:
parent
81fbd1413e
commit
18c7709d1d
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "twitter.common.lang";
|
||||||
|
version = "0.3.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1l8fmnsrx7hgg3ivslg588rnl9n1gfjn2w6224fr8rs7zmkd5lan";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Twitter's 2.x / 3.x compatibility swiss-army knife";
|
||||||
|
homepage = "https://twitter.github.io/commons/";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ copumpkin ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -4019,23 +4019,7 @@ in {
|
|||||||
|
|
||||||
twitter-common-dirutil = callPackage ../development/python-modules/twitter-common-dirutil { };
|
twitter-common-dirutil = callPackage ../development/python-modules/twitter-common-dirutil { };
|
||||||
|
|
||||||
twitter-common-lang = buildPythonPackage rec {
|
twitter-common-lang = callPackage ../development/python-modules/twitter-common-lang { };
|
||||||
pname = "twitter.common.lang";
|
|
||||||
version = "0.3.9";
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = self.fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "1l8fmnsrx7hgg3ivslg588rnl9n1gfjn2w6224fr8rs7zmkd5lan";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Twitter's 2.x / 3.x compatibility swiss-army knife";
|
|
||||||
homepage = "https://twitter.github.io/commons/";
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ copumpkin ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
twitter-common-log = buildPythonPackage rec {
|
twitter-common-log = buildPythonPackage rec {
|
||||||
pname = "twitter.common.log";
|
pname = "twitter.common.log";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user