spglib/pythonPackages.spglib: 2.0.1 -> 2.0.2

This commit is contained in:
Markus Kowalewski 2022-11-10 11:22:37 +01:00
parent 5a9b4e6cfa
commit a4e879a549
No known key found for this signature in database
GPG Key ID: 502A248E3FB4FF48
2 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "spglib";
version = "2.0.1"; # N.B: if you change this, please update: pythonPackages.spglib
version = "2.0.2"; # N.B: if you change this, please update: pythonPackages.spglib
src = fetchFromGitHub {
owner = "spglib";
repo = "spglib";
rev = "v${version}";
sha256 = "sha256-0M3GSnNvBNmE4ShW8NNkVrOBGEF9A0C5wd++xnyrcdI=";
sha256 = "sha256-8Voepj35CMbboL3Dc55Gc4+OLPTTSgqVQuvNcRQsqmU=";
};
nativeBuildInputs = [ cmake ];

View File

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "spglib";
version = "2.0.1";
version = "2.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9fHKuDWuwbjXjL9CmJxUWWoomkqDP93J8MX1XKwbwsE=";
sha256 = "sha256-HQgewi2kq0/DGY6URd2tbewiYcQ5J4MRUdk+OUImEKo=";
};
propagatedBuildInputs = [ numpy ];