blob: 7258874457c342b307fd69efddd5ab4fe96a681c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
more-itertools,
numpy,
}:
buildPythonPackage rec {
pname = "parsnip";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "glotzerlab";
repo = "parsnip";
rev = "v${version}";
hash = "sha256-BCEQnClT/dI+t8RwMEQkzbFVCmDThiS9m8ZBCIEFrlg=";
};
build-system = [
setuptools
wheel
];
dependencies = [
more-itertools
numpy
];
pythonImportsCheck = [
"parsnip"
];
meta = {
description = "Lightweight, performant library for parsing CIF files in Python";
homepage = "https://github.com/glotzerlab/parsnip";
changelog = "https://github.com/glotzerlab/parsnip/blob/${src.rev}/changelog.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
|