nixpkgs/pkgs/development/python-modules/extras/default.nix

23 lines
532 B
Nix
Raw Normal View History

2017-12-30 12:48:07 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "extras";
2017-12-30 12:48:22 +00:00
version = "1.0.0";
2017-12-30 12:48:07 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 12:48:22 +00:00
sha256 = "132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e";
2017-12-30 12:48:07 +00:00
};
# error: invalid command 'test'
doCheck = false;
meta = {
description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges";
homepage = https://code.google.com/p/mimeparse/;
license = lib.licenses.mit;
};
}