nixpkgs/pkgs/development/python-modules/wheel/default.nix

35 lines
703 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
, coverage
, jsonschema
}:
buildPythonPackage rec {
pname = "wheel";
2019-02-23 15:36:02 +01:00
version = "0.33.1";
src = fetchPypi {
inherit pname version;
2019-02-23 15:36:02 +01:00
sha256 = "66a8fd76f28977bb664b098372daef2b27f60dc4d1688cfab7b37a09448f0e9d";
};
2017-09-11 22:48:30 +02:00
checkInputs = [ pytest pytestcov coverage ];
propagatedBuildInputs = [ jsonschema ];
2017-09-11 22:48:30 +02:00
# No tests in archive
doCheck = false;
# We add this flag to ignore the copy installed by bootstrapped-pip
installFlags = [ "--ignore-installed" ];
meta = {
description = "A built-package format for Python";
license = with lib.licenses; [ mit ];
homepage = https://bitbucket.org/pypa/wheel/;
};
}