···21 azure-keyvault-secrets
22 ];
2324- # this is just a meta package, which contains keys and secrets
25 doCheck = false;
26-27- pythonNamespaces = [ "azure" ];
2829 pythonImportsCheck = [
30 "azure.keyvault.keys"
···21 azure-keyvault-secrets
22 ];
2324+ # this is just a meta package, which contains keys and secrets packages
25 doCheck = false;
26+ doBuild = false;
02728 pythonImportsCheck = [
29 "azure.keyvault.keys"
···56buildPythonPackage rec {
7 pname = "celery";
8- version = "5.1.2";
910 src = fetchPypi {
11 inherit pname version;
12- sha256 = "8d9a3de9162965e97f8e8cc584c67aad83b3f7a267584fa47701ed11c3e0d4b0";
13 };
1415 # click is only used for the repl, in most cases this shouldn't impact
···56buildPythonPackage rec {
7 pname = "celery";
8+ version = "5.2.1";
910 src = fetchPypi {
11 inherit pname version;
12+ sha256 = "b41a590b49caf8e6498a57db628e580d5f8dc6febda0f42de5d783aed5b7f808";
13 };
1415 # click is only used for the repl, in most cases this shouldn't impact
···1213buildPythonPackage rec {
14 pname = "cocotb";
15- version = "1.5.2";
1617 # - we need to use the tarball from PyPi
18 # or the full git checkout (with .git)
···20 # because it does not include required metadata
21 src = fetchPypi {
22 inherit pname version;
23- sha256 = "9f4f3e6eb9caeb479e98d604770645b57469cd25b39e28df1916ffcd593efbe6";
24 };
2526 nativeBuildInputs = [ setuptools-scm ];
···1213buildPythonPackage rec {
14 pname = "cocotb";
15+ version = "1.6.0";
1617 # - we need to use the tarball from PyPi
18 # or the full git checkout (with .git)
···20 # because it does not include required metadata
21 src = fetchPypi {
22 inherit pname version;
23+ sha256 = "a695544ab314e6d795b72ece9e67b51c6668c569b21303158e00452db43c5756";
24 };
2526 nativeBuildInputs = [ setuptools-scm ];
···18 # If you need these, you can just add them to your environment.
1920 pname = "hypothesis";
21- version = "6.24.5";
2223 # Use github tarballs that includes tests
24 src = fetchFromGitHub {
25 owner = "HypothesisWorks";
26 repo = "hypothesis-python";
27 rev = "hypothesis-python-${version}";
28- sha256 = "+pPnMgbLdYbh0xqPewNOJRaL7VtxeN73wbHHuK0fNYo=";
29 };
3031 postUnpack = "sourceRoot=$sourceRoot/hypothesis-python";
···18 # If you need these, you can just add them to your environment.
1920 pname = "hypothesis";
21+ version = "6.27.1";
2223 # Use github tarballs that includes tests
24 src = fetchFromGitHub {
25 owner = "HypothesisWorks";
26 repo = "hypothesis-python";
27 rev = "hypothesis-python-${version}";
28+ sha256 = "05kfz041vrd9fy8gl8ch05g806jj4j6l1cnwhqgygagn9z3aq1jx";
29 };
3031 postUnpack = "sourceRoot=$sourceRoot/hypothesis-python";
···2122 # Multiple tests run out of stack space on 32bit systems with python2.
23 # See https://github.com/pallets/jinja/issues/1158
24- doCheck = !stdenv.is32bit || isPy3k;
02526 checkPhase = ''
27 pytest -v tests -W ignore::DeprecationWarning
···2122 # Multiple tests run out of stack space on 32bit systems with python2.
23 # See https://github.com/pallets/jinja/issues/1158
24+ # warnings are no longer being filtered correctly for python2
25+ doCheck = !stdenv.is32bit && isPy3k;
2627 checkPhase = ''
28 pytest -v tests -W ignore::DeprecationWarning
···2324buildPythonPackage rec {
25 pname = "nbconvert";
26- version = "6.2.0";
2728 src = fetchPypi {
29 inherit pname version;
30- sha256 = "16ceecd0afaa8fd26c245fa32e2c52066c02f13aa73387fffafd84750baea863";
31 };
3233 # Add $out/share/jupyter to the list of paths that are used to search for
···2324buildPythonPackage rec {
25 pname = "nbconvert";
26+ version = "6.3.0";
2728 src = fetchPypi {
29 inherit pname version;
30+ sha256 = "5e77d6203854944520105e38f2563a813a4a3708e8563aa598928a3b5ee1081a";
31 };
3233 # Add $out/share/jupyter to the list of paths that are used to search for