mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
39 lines
845 B
Nix
39 lines
845 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pythonAtLeast
|
|
, subunit
|
|
, testrepository
|
|
, testtools
|
|
, six
|
|
, pbr
|
|
, fixtures
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mox3";
|
|
version = "1.1.0";
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8a526b7b9b6341f541a9aef3e08c93fd84a5373fe89d4cc51dd571f085b2363c";
|
|
};
|
|
|
|
buildInputs = [ subunit testrepository testtools six ];
|
|
propagatedBuildInputs = [ pbr fixtures ];
|
|
|
|
# Disabling as several tests dependencies are missing:
|
|
# https://opendev.org/openstack/mox3/src/branch/master/test-requirements.txt
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Mock object framework for Python";
|
|
homepage = "https://docs.openstack.org/mox3/latest/";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|