pythonPackages.twitter: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-28 11:59:40 -04:00
parent 0f6fdbf26e
commit 14a2378036
2 changed files with 24 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "twitter";
version = "1.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "1m6b17irb9klc345k8174pni724jzy2973z2x2jg69h83hipjw2c";
};
doCheck = false;
meta = with stdenv.lib; {
description = "Twitter API library";
license = licenses.mit;
maintainers = with maintainers; [ thoughtpolice ];
};
}