mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
python312Packages.pepit: init at 0.3.2
This commit is contained in:
parent
3f8d6caed2
commit
d570509c20
53
pkgs/development/python-modules/pepit/default.nix
Normal file
53
pkgs/development/python-modules/pepit/default.nix
Normal file
@ -0,0 +1,53 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
cvxpy,
|
||||
numpy,
|
||||
pandas,
|
||||
scipy,
|
||||
matplotlib,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pepit";
|
||||
version = "0.3.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PerformanceEstimation";
|
||||
repo = "PEPit";
|
||||
rev = version;
|
||||
hash = "sha256-Gdymdfi0Iv9KXBNSbAEWGYIQ4k5EONnbyWs+99L5D/A=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
cvxpy
|
||||
numpy
|
||||
pandas
|
||||
scipy
|
||||
matplotlib
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"PEPit"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Performance Estimation in Python";
|
||||
changelog = "https://pepit.readthedocs.io/en/latest/whatsnew/${version}.html";
|
||||
homepage = "https://pepit.readthedocs.io/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ wegank ];
|
||||
};
|
||||
}
|
@ -9888,6 +9888,8 @@ self: super: with self; {
|
||||
|
||||
pep8-naming = callPackage ../development/python-modules/pep8-naming { };
|
||||
|
||||
pepit = callPackage ../development/python-modules/pepit { };
|
||||
|
||||
peppercorn = callPackage ../development/python-modules/peppercorn { };
|
||||
|
||||
percol = callPackage ../development/python-modules/percol { };
|
||||
|
Loading…
Reference in New Issue
Block a user