python3Packages.treeo: 0.4.0 -> 0.0.11
This commit is contained in:
parent
eee8362a75
commit
db60f460b6
1 changed files with 17 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, jax
|
, jax
|
||||||
, jaxlib
|
, jaxlib
|
||||||
, lib
|
, lib
|
||||||
|
@ -8,20 +9,30 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "treeo";
|
pname = "treeo";
|
||||||
version = "0.4.0";
|
# Note that there is a version 0.4.0, but it was released in error. At the
|
||||||
|
# time of writing (2022-03-29), v0.0.11 is the latest as reported on GitHub
|
||||||
|
# and PyPI.
|
||||||
|
version = "0.0.11";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cgarciae";
|
owner = "cgarciae";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "176r1kgsdlylvdrxmhnzni81p8m9cfnsn4wwn6fnmsgam2qbp76j";
|
hash = "sha256-zs3F8i+G5OX/A9wOO60xVuvnm2QqrL+dHIrC0qwH37o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
# See https://github.com/cgarciae/treex/issues/68.
|
||||||
substituteInPlace pyproject.toml \
|
patches = [
|
||||||
--replace 'typing-extensions = "^3.10.0"' 'typing-extensions = "*"'
|
(fetchpatch {
|
||||||
'';
|
url = "https://github.com/cgarciae/treeo/pull/14/commits/022915da2b3bf76406a7c79d1b4593bee7956f16.patch";
|
||||||
|
hash = "sha256-WGxJqqrf2g0yZe30RyG1xxbloiqj1awuf1Y4eh5y+z0=";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/cgarciae/treeo/pull/14/commits/99f9488bd0c977780844fd79743167b0010d359b.patch";
|
||||||
|
hash = "sha256-oKDYs+Ah0QXkhiJysIudQ6VLIiUiIcnQisxYp6GJuTc=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
|
|
Loading…
Reference in a new issue