Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 703 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, pytestcov 6, coverage 7, jsonschema 8}: 9 10buildPythonPackage rec { 11 pname = "wheel"; 12 version = "0.33.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "66a8fd76f28977bb664b098372daef2b27f60dc4d1688cfab7b37a09448f0e9d"; 17 }; 18 19 checkInputs = [ pytest pytestcov coverage ]; 20 21 propagatedBuildInputs = [ jsonschema ]; 22 23 # No tests in archive 24 doCheck = false; 25 26 # We add this flag to ignore the copy installed by bootstrapped-pip 27 installFlags = [ "--ignore-installed" ]; 28 29 meta = { 30 description = "A built-package format for Python"; 31 license = with lib.licenses; [ mit ]; 32 homepage = https://bitbucket.org/pypa/wheel/; 33 }; 34}