mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 21:49:34 +03:00
python3Packages.matplotlib-inline: 0.1.6 -> 0.1.7
This commit is contained in:
parent
2927ab4ca4
commit
bff48723c1
1 changed files with 19 additions and 7 deletions
|
@ -1,4 +1,8 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
, setuptools
|
||||||
, traitlets
|
, traitlets
|
||||||
|
|
||||||
# tests
|
# tests
|
||||||
|
@ -7,15 +11,23 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "matplotlib-inline";
|
pname = "matplotlib-inline";
|
||||||
version = "0.1.6";
|
version = "0.1.7";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
disabled = pythonOlder "3.8";
|
||||||
inherit pname version;
|
|
||||||
hash = "sha256-+Ifl8Qupjo0rFQ3c9HAsHl+LOiAAXrD3S/29Ng7m8wQ=";
|
src = fetchFromGitHub {
|
||||||
|
owner = "ipython";
|
||||||
|
repo = "matplotlib-inline";
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
hash = "sha256-y7T8BshNa8NVWzH8oLS4dTAyhG+YmkkYQJFAyMXsJFA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
traitlets
|
traitlets
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue