Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 22 lines 491 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "twitter.common.options"; 8 version = "0.3.10"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "9eeaf078462afdfa5ba237727c908a8b3b8b28d172838dbe58d3addf722da6c8"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Twitter's optparse wrapper"; 17 homepage = "https://twitter.github.io/commons/"; 18 license = licenses.asl20; 19 maintainers = with maintainers; [ copumpkin ]; 20 }; 21 22}