Merge pull request #212144 from dotlambda/pycaption-2.1.1

python310Packages.pycaption: 2.1.0 -> 2.1.1
This commit is contained in:
Nick Cao 2023-01-25 12:53:02 +08:00 committed by GitHub
commit 96f7541f55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,13 +5,14 @@
, beautifulsoup4
, lxml
, cssutils
, nltk
, pytest-lazy-fixture
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pycaption";
version = "2.1.0";
version = "2.1.1";
disabled = pythonOlder "3.6";
@ -19,7 +20,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
hash = "sha256-mV//EYdP7wKYD3Vc49z6LQVQeOuhzNKFZLf28RYdABk=";
hash = "sha256-B+uIh8WTPPeNVU3yP8FEGc8OinY0MpJb9dHLC+nhi4I=";
};
propagatedBuildInputs = [
@ -28,6 +29,10 @@ buildPythonPackage rec {
cssutils
];
passthru.optional-dependencies = {
transcript = [ nltk ];
};
nativeCheckInputs = [
pytest-lazy-fixture
pytestCheckHook