Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 21 lines 504 B view raw
1{ lib, buildPythonPackage, fetchFromGitHub, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "precis-i18n"; 5 version = "1.0.2"; 6 7 disabled = !isPy3k; 8 9 src = fetchFromGitHub { 10 owner = "byllyfish"; 11 repo = "precis_i18n"; 12 rev = "v${version}"; 13 hash = "sha256:1r9pah1kgik6valf15ac7ybw0szr92cq84kwjvm6mq3z46j1pmkr"; 14 }; 15 16 meta = { 17 homepage = "https://github.com/byllyfish/precis_i18n"; 18 description = "Internationalized usernames and passwords"; 19 license = lib.licenses.mit; 20 }; 21}