mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
pyevtk: 1.2.0 -> 1.6.0; change upstream url (#331360)
This commit is contained in:
commit
9f813de3af
@ -1,7 +1,7 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
numpy,
|
||||
pytestCheckHook,
|
||||
@ -10,14 +10,13 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyevtk";
|
||||
version = "1.2.0";
|
||||
version = "1.6.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pyscience-projects";
|
||||
repo = "pyevtk";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-HrodoVxjREZiutgRJ3ZUrART29+gAZfpR9f4A4SRh4Q=";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
||||
hash = "sha256-H2vnh2o6AFyCWIYVUdpP5+RP8aLn/yqT1txR3u39pfQ=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
@ -38,7 +37,6 @@ buildPythonPackage rec {
|
||||
meta = {
|
||||
description = "Exports data to binary VTK files for visualization/analysis";
|
||||
homepage = "https://github.com/pyscience-projects/pyevtk";
|
||||
changelog = "https://github.com/pyscience-projects/pyevtk/blob/${src.rev}/CHANGES.txt";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ sigmanificient ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user