pythonPackages.surt: init at 0.3.1

This commit is contained in:
Luflosi 2021-04-14 18:53:09 +02:00
parent acf0dbcc90
commit a3354dc39c
No known key found for this signature in database
GPG key ID: 4E41E29EDCC345D0
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, six
, tldextract
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "surt";
version = "0.3.1";
src = fetchFromGitHub {
owner = "internetarchive";
repo = "surt";
rev = "6934c321b3e2f66af9c001d882475949f00570c5"; # Has no git tag
sha256 = "sha256-pSMNpFfq2V0ANWNFPcb1DwPHccbfddo9P4xZ+ghwbz4=";
};
propagatedBuildInputs = [
six
tldextract
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "surt" ];
meta = with lib; {
description = "Sort-friendly URI Reordering Transform (SURT) python module";
homepage = "https://github.com/internetarchive/surt";
license = licenses.agpl3Only;
maintainers = with maintainers; [ Luflosi ];
};
}

View file

@ -8196,6 +8196,8 @@ in {
surepy = callPackage ../development/python-modules/surepy { };
surt = callPackage ../development/python-modules/surt { };
survey = callPackage ../development/python-modules/survey { };
suseapi = callPackage ../development/python-modules/suseapi { };