mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #44414 from dotlambda/antfs-cli-python3
antfs-cli: use python3Packages
This commit is contained in:
commit
455bf6d875
@ -1,7 +1,8 @@
|
||||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "antfs-cli-unstable-2017-02-11";
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "antfs-cli";
|
||||
version = "unstable-2017-02-11";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/Tigge/antfs-cli;
|
||||
@ -17,5 +18,5 @@ pythonPackages.buildPythonApplication rec {
|
||||
sha256 = "0v8y64kldfbs809j1g9d75dd1vxq7mfxnp4b45pz8anpxhjf64fy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pythonPackages.openant ];
|
||||
propagatedBuildInputs = [ python3Packages.openant ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user