python3Packages.broadbean: init at 0.11.0
This commit is contained in:
parent
4cca6cf888
commit
f56547c565
3 changed files with 55 additions and 0 deletions
|
@ -4928,6 +4928,12 @@
|
|||
githubId = 2512008;
|
||||
name = "Even Brenden";
|
||||
};
|
||||
evilmav = {
|
||||
email = "elenskiy.ilya@gmail.com";
|
||||
github = "evilmav";
|
||||
githubId = 6803717;
|
||||
name = "Ilya Elenskiy";
|
||||
};
|
||||
evils = {
|
||||
email = "evils.devils@protonmail.com";
|
||||
matrix = "@evils:nixos.dev";
|
||||
|
|
47
pkgs/development/python-modules/broadbean/default.nix
Normal file
47
pkgs/development/python-modules/broadbean/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, versioningit
|
||||
, numpy
|
||||
, matplotlib
|
||||
, schema
|
||||
, hypothesis
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "broadbean";
|
||||
version = "0.11.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-e+LAcmWxT+SkaWtToPgg+x3QRu5fCSm+w4dLCcyZrw8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools versioningit ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
numpy
|
||||
matplotlib
|
||||
schema
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
hypothesis
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "broadbean" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://qcodes.github.io/broadbean";
|
||||
description = "A library for making pulses that can be leveraged with QCoDeS";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ evilmav ];
|
||||
};
|
||||
}
|
|
@ -1485,6 +1485,8 @@ self: super: with self; {
|
|||
|
||||
brian2 = callPackage ../development/python-modules/brian2 { };
|
||||
|
||||
broadbean = callPackage ../development/python-modules/broadbean { };
|
||||
|
||||
broadlink = callPackage ../development/python-modules/broadlink { };
|
||||
|
||||
brother = callPackage ../development/python-modules/brother { };
|
||||
|
|
Loading…
Reference in a new issue