nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.surt: init at 0.3.1

Luflosi a3354dc3 acf0dbcc

+39
+37
pkgs/development/python-modules/surt/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , six 5 + , tldextract 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "surt"; 11 + version = "0.3.1"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "internetarchive"; 15 + repo = "surt"; 16 + rev = "6934c321b3e2f66af9c001d882475949f00570c5"; # Has no git tag 17 + sha256 = "sha256-pSMNpFfq2V0ANWNFPcb1DwPHccbfddo9P4xZ+ghwbz4="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + six 22 + tldextract 23 + ]; 24 + 25 + checkInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + pythonImportsCheck = [ "surt" ]; 30 + 31 + meta = with lib; { 32 + description = "Sort-friendly URI Reordering Transform (SURT) python module"; 33 + homepage = "https://github.com/internetarchive/surt"; 34 + license = licenses.agpl3Only; 35 + maintainers = with maintainers; [ Luflosi ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 8196 8196 8197 8197 surepy = callPackage ../development/python-modules/surepy { }; 8198 8198 8199 + surt = callPackage ../development/python-modules/surt { }; 8200 + 8199 8201 survey = callPackage ../development/python-modules/survey { }; 8200 8202 8201 8203 suseapi = callPackage ../development/python-modules/suseapi { };