Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 459 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "precis-i18n"; 5 version = "1.0.0"; 6 7 disabled = !isPy3k; 8 9 src = fetchPypi { 10 pname = "precis_i18n"; 11 inherit version; 12 sha256 = "0gjhvwd8aifx94rl1ag08vlmndyx2q3fkyqb0c4i46x3p2bc2yi2"; 13 }; 14 15 meta = { 16 homepage = "https://github.com/byllyfish/precis_i18n"; 17 description = "Internationalized usernames and passwords"; 18 license = lib.licenses.mit; 19 }; 20}