Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 18.09-beta 18 lines 560 B view raw
1{ lib, fetchPypi, buildPythonPackage, isPy3k }: 2 3buildPythonPackage rec { 4 version = "1.9"; 5 pname = "python-stdnum"; 6 # Failing tests and dependency issue on Py3k 7 disabled = isPy3k; 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "d587a520182f9d8aef7659cca429f4382881589c8883a0a55322b2f94970bdb3"; 11 }; 12 meta = { 13 homepage = https://arthurdejong.org/python-stdnum/; 14 description = "Python module to handle standardized numbers and codes"; 15 maintainers = with lib.maintainers; [ johbo ]; 16 license = lib.licenses.lgpl2Plus; 17 }; 18}