Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1bf0327ef6d7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 297857c9fbac
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Nov 4, 2020

  1. pythonPackages: fix pythonImportsCheck typos and capitalization

    mweinelt authored and Jonathan Ringer committed Nov 4, 2020
    Copy the full SHA
    297857c View commit details
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/batchspawner/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ buildPythonPackage rec {
# tests require a job scheduler e.g. slurm, pbs, etc.
doCheck = false;

pythonImportCheck = [ "batchspawner" ];
pythonImportsCheck = [ "batchspawner" ];

meta = with lib; {
description = "A spawner for Jupyterhub to spawn notebooks using batch resource managers";
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/distro/default.nix
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ buildPythonPackage rec {
# tests are very targeted at individual linux distributions
doCheck = false;

pythonImportcheck = [ "distro" ];
pythonImportsCheck = [ "distro" ];

meta = with stdenv.lib; {
homepage = "https://github.com/nir0s/distro";
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/dockerspawner/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ buildPythonPackage rec {
# tests require docker
doCheck = false;

pythonImportCheck = [ "dockerspawner" ];
pythonImportsCheck = [ "dockerspawner" ];

meta = with lib; {
description = "Dockerspawner: A custom spawner for Jupyterhub";
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/gym/default.nix
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ buildPythonPackage rec {
# The test needs MuJoCo that is not free library.
doCheck = false;

pythonImportCheck = [ "gym" ];
pythonImportsCheck = [ "gym" ];

meta = with lib; {
description = "A toolkit by OpenAI for developing and comparing your reinforcement learning agents";
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/wled/default.nix
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ buildPythonPackage rec {
pytestCheckHook
];

pythonImportCheck = [ "wled" ];
pythonImportsCheck = [ "wled" ];

meta = with lib; {
description = "Asynchronous Python client for WLED";