2018-04-05 22:05:51 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, simplejson }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "uritemplate";
|
2018-04-05 22:06:41 +02:00
|
|
|
version = "3.0.0";
|
2018-04-05 22:05:51 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-05 22:06:41 +02:00
|
|
|
sha256 = "c02643cebe23fc8adb5e6becffe201185bf06c40bda5c0b4028a93f1527d011d";
|
2018-04-05 22:05:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ simplejson ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/uri-templates/uritemplate-py;
|
|
|
|
description = "Python implementation of URI Template";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
|
|
};
|
|
|
|
}
|