mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python: flit: 0.13 -> 1.0
This commit is contained in:
parent
af711951a1
commit
09e16249c6
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ attrs // {
|
|||
buildInputs = [ flit ];
|
||||
buildPhase = attrs.buildPhase or ''
|
||||
runHook preBuild
|
||||
flit wheel
|
||||
flit build --format wheel
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
|
|
|
@ -21,11 +21,11 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "flit";
|
||||
version = "0.13";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "8f558351bf4bb82b872d3bdbea7055cbb2e33ed2bdf809284bf927d4c78bf0ee";
|
||||
sha256 = "95b8577b2232da39ee14ae237575b7a85afeeabc1e87f4a19485fac34f85aa89";
|
||||
};
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
|
Loading…
Reference in a new issue