9 buildPythonPackage rec {
10 pname = "bibtexparser";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
17 owner = "sciunto-org";
18 repo = "python-${pname}";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-YMkLSx7L2srLINZa6Ec0rPoxE2SdMv6CnI4BpHgHuzM=";
23 propagatedBuildInputs = [
31 pythonImportsCheck = [
36 description = "Bibtex parser for Python";
37 homepage = "https://github.com/sciunto-org/python-bibtexparser";
38 license = with licenses; [ lgpl3Only /* or */ bsd3 ];
39 maintainers = with maintainers; [ fridh ];