Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchFromGitHub }: 2 3buildPythonPackage rec { 4 pname = "naturalsort"; 5 version = "1.5.1"; 6 7 src = fetchFromGitHub { 8 owner = "xolox"; 9 repo = "python-naturalsort"; 10 rev = version; 11 sha256 = "0w43vlddzh97hffnvxp2zkrns9qyirx5g8ijxnxkbx1c4b4gq5ih"; 12 }; 13 14 meta = with lib; { 15 description = "Simple natural order sorting API for Python that just works"; 16 homepage = "https://github.com/xolox/python-naturalsort"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ eyjhb ]; 19 }; 20}