mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
Merge pull request #52641 from lopsided98/uritemplate-merge
pythonPackages.uritemplate_py: remove
This commit is contained in:
commit
c0611717dc
|
@ -1,22 +0,0 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "uritemplate.py";
|
||||
version = "3.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "e0cdeb0f55ec18e1580974e8017cd188549aacc2aba664ae756adb390b9d45b4";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/uri-templates/uritemplate-py;
|
||||
description = "Python implementation of URI Template";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
|
||||
}
|
|
@ -4373,8 +4373,6 @@ in {
|
|||
|
||||
unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };
|
||||
|
||||
uritemplate_py = callPackage ../development/python-modules/uritemplate_py { };
|
||||
|
||||
traceback2 = callPackage ../development/python-modules/traceback2 { };
|
||||
|
||||
linecache2 = callPackage ../development/python-modules/linecache2 { };
|
||||
|
|
Loading…
Reference in a new issue