1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00

python3Packages.striprtf: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2022-01-07 10:02:01 +01:00 committed by GitHub
parent 6195b7c6e0
commit 789434b790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,12 +6,17 @@
buildPythonPackage rec {
pname = "striprtf";
version = "0.0.19";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "b7f15e11306e466dbe91665409233a06d9fdb4ee156489a3d879579891b04c25";
};
pythonImportsCheck = [
"striprtf"
];
meta = with lib; {
homepage = "https://github.com/joshy/striprtf";
description = "A simple library to convert rtf to text";