Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 433 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "twitter"; 8 version = "1.18.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "acdc85e5beea752967bb64c63bde8b915c49a31a01db1b2fecccf9f2c1d5c44d"; 13 }; 14 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 description = "Twitter API library"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ thoughtpolice ]; 21 }; 22 23}