mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
Merge pull request #230595 from mweinelt/urlman-2.0.1
python310Packages.urlman: init at 2.0.1
This commit is contained in:
commit
6caac5b6c4
34
pkgs/development/python-modules/urlman/default.nix
Normal file
34
pkgs/development/python-modules/urlman/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "urlman";
|
||||
version = "2.0.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "andrewgodwin";
|
||||
repo = "urlman";
|
||||
rev = version;
|
||||
hash = "sha256-p6lRuMHM2xJrlY5LDa0XLCGQPDE39UwCouK6e0U9zJE=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"urlman"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Django URL pattern helpers";
|
||||
homepage = "https://github.com/andrewgodwin/urlman";
|
||||
changelog = "https://github.com/andrewgodwin/urlman/blob/${src.rev}/CHANGELOG";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -12462,6 +12462,8 @@ self: super: with self; {
|
||||
|
||||
urllib3 = callPackage ../development/python-modules/urllib3 { };
|
||||
|
||||
urlman = callPackage ../development/python-modules/urlman { };
|
||||
|
||||
urlpy = callPackage ../development/python-modules/urlpy { };
|
||||
|
||||
urwid = callPackage ../development/python-modules/urwid { };
|
||||
|
Loading…
Reference in New Issue
Block a user