repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
cirq-ft
/
default.nix
blob
83a8392b9520490b7aef5393c0454b99495c035a
1
{ attrs
2
, buildPythonPackage
3
, cachetools
4
, cirq-core
5
, ipython
6
, ipywidgets
7
, nbconvert
8
, nbformat
9
, pytestCheckHook
10
}:
11
12
buildPythonPackage rec {
13
pname = "cirq-ft";
14
inherit (cirq-core) version src meta;
15
16
sourceRoot = "${src.name}/${pname}";
17
18
propagatedBuildInputs = [
19
attrs
20
cachetools
21
cirq-core
22
ipython
23
ipywidgets
24
nbconvert
25
nbformat
26
];
27
28
nativeCheckInputs = [
29
ipython
30
pytestCheckHook
31
];
32
33
# cirq's importlib hook doesn't work here
34
#pythonImportsCheck = [ "cirq_ft" ];
35
36
}