depot/third_party/nixpkgs/pkgs/development/python-modules/textile/default.nix
Default email 792b51d22f Project import generated by Copybara.
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
2022-02-20 05:27:41 +00:00

48 lines
903 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, html5lib
, pytestCheckHook
, pythonOlder
, regex
}:
buildPythonPackage rec {
pname = "textile";
version = "4.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = "python-textile";
rev = version;
hash = "sha256-WwX7h07Bq8sNsViHwmfhrrqleXacmrIY4ZBBaP2kKnI=";
};
propagatedBuildInputs = [
html5lib
regex
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pytest.ini \
--replace " --cov=textile --cov-report=html --cov-append --cov-report=term-missing" ""
'';
pythonImportsCheck = [
"textile"
];
meta = with lib; {
description = "MOdule for generating web text";
homepage = "https://github.com/textile/python-textile";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}