Files
nixpkgs/pkgs/development/python-modules/webencodings/default.nix
T

28 lines
535 B
Nix
Raw Normal View History

2016-12-25 11:12:04 +01:00
{ buildPythonPackage
, lib
2018-06-23 15:27:58 +02:00
, fetchPypi
2016-12-25 11:12:04 +01:00
, pytest
}:
buildPythonPackage rec {
2016-12-25 11:12:04 +01:00
pname = "webencodings";
2017-05-27 14:24:47 +02:00
version = "0.5.1";
2016-12-25 11:12:04 +01:00
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-05-27 14:24:47 +02:00
sha256 = "b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923";
2016-12-25 11:12:04 +01:00
};
2018-06-23 15:27:58 +02:00
checkInputs = [ pytest ];
2016-12-25 11:12:04 +01:00
checkPhase = ''
py.test webencodings/tests.py
'';
meta = {
description = "Character encoding aliases for legacy web content";
homepage = https://github.com/SimonSapin/python-webencodings;
license = lib.licenses.bsd3;
};
}