Merge pull request #52641 from lopsided98/uritemplate-merge

pythonPackages.uritemplate_py: remove
This commit is contained in:
Jörg Thalheim
2018-12-21 21:24:52 +01:00
committed by GitHub
2 changed files with 0 additions and 24 deletions

View File

@@ -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 ];
};
}