mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 18:14:42 +00:00
Merge pull request #320637 from r-ryantm/auto-update/python311Packages.tskit
python311Packages.tskit: 0.5.6 -> 0.5.7
This commit is contained in:
commit
fa2bb6f5af
@ -2,7 +2,7 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
setuptools-scm,
|
setuptools,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
numpy,
|
numpy,
|
||||||
jsonschema,
|
jsonschema,
|
||||||
@ -11,20 +11,21 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tskit";
|
pname = "tskit";
|
||||||
version = "0.5.6";
|
version = "0.5.7";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-3f4hPxywY822mCF3IwooBezX38fM1zAm4Th4q//SzkY=";
|
hash = "sha256-yD+2W1tzzi+5wFoZrqNe+jJLpWyx6ZILBgKivDE+wiM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools-scm ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
numpy
|
|
||||||
jsonschema
|
jsonschema
|
||||||
|
numpy
|
||||||
svgwrite
|
svgwrite
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -34,11 +35,11 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
pythonImportsCheck = [ "tskit" ];
|
pythonImportsCheck = [ "tskit" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Tree sequence toolkit";
|
description = "Tree sequence toolkit";
|
||||||
mainProgram = "tskit";
|
mainProgram = "tskit";
|
||||||
homepage = "https://github.com/tskit-dev/tskit";
|
homepage = "https://github.com/tskit-dev/tskit";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with maintainers; [ alxsimon ];
|
maintainers = with lib.maintainers; [ alxsimon ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user