mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 13:15:30 +03:00
python313Packages.bibtexparser: 1.4.3 -> 2.0.0b8
This commit is contained in:
parent
ae12da7f6c
commit
2c49c7cf7b
1 changed files with 8 additions and 8 deletions
|
@ -2,26 +2,26 @@
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
pyparsing,
|
setuptools,
|
||||||
|
pylatexenc,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "bibtexparser";
|
pname = "bibtexparser";
|
||||||
version = "1.4.3";
|
version = "2.0.0b8";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sciunto-org";
|
owner = "sciunto-org";
|
||||||
repo = "python-${pname}";
|
repo = "python-${pname}";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-9m+7RbeJMJssviyIezPrSLMMGcQTHYaOFQwLhnu04Es=";
|
hash = "sha256-531Mh/5DUYayXm1H0v4dPX0P9mRcqcQcU/A+f4wwqxg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyparsing ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [ pylatexenc ];
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue