1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-23 07:26:54 +00:00
nixpkgs/pkgs/development/python-modules/uritemplate/default.nix

24 lines
568 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, simplejson }:
buildPythonPackage rec {
pname = "uritemplate";
version = "0.6";
src = fetchPypi {
inherit pname version;
sha256 = "1zapwg406vkwsirnzc6mwq9fac4az8brm6d9bp5xpgkyxc5263m3";
};
# 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 ];
};
}