python: flit: 0.13 -> 1.0

This commit is contained in:
Frederik Rietdijk 2018-04-08 08:32:47 +02:00
parent af711951a1
commit 09e16249c6
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ attrs // {
buildInputs = [ flit ];
buildPhase = attrs.buildPhase or ''
runHook preBuild
flit wheel
flit build --format wheel
runHook postBuild
'';

View file

@ -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;