pythonPackages.purl: init at 1.5
This commit is contained in:
parent
0213ccf624
commit
04c2622d07
27
pkgs/development/python-modules/purl/default.nix
Normal file
27
pkgs/development/python-modules/purl/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub
|
||||
, nose
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "purl";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "codeinthehole";
|
||||
repo = "purl";
|
||||
rev = version;
|
||||
sha256 = "0vi7xdm2xc1rbqrz5jwpr7x7dnkcrbjf1mb4w1q2c2f8jca0kk0g";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ nose ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Immutable URL class for easy URL-building and manipulation";
|
||||
homepage = "https://github.com/codeinthehole/purl";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
@ -839,6 +839,8 @@ in {
|
||||
|
||||
pure-python-adb-homeassistant = callPackage ../development/python-modules/pure-python-adb-homeassistant { };
|
||||
|
||||
purl = callPackage ../development/python-modules/purl { };
|
||||
|
||||
pymystem3 = callPackage ../development/python-modules/pymystem3 { };
|
||||
|
||||
pymysql = callPackage ../development/python-modules/pymysql { };
|
||||
|
Loading…
Reference in New Issue
Block a user