nixpkgs/pkgs/development/python-modules/fuse-python/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

25 lines
604 B
Nix

{ lib, stdenv, buildPythonPackage, fetchPypi, pkg-config, fuse }:
buildPythonPackage rec {
pname = "fuse-python";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "cbaa21c8f0a440302d1ba9fd57a80cf9ff227e5a3820708a8ba8450db883cc05";
};
buildInputs = [ fuse ];
nativeBuildInputs = [ pkg-config ];
# no tests in the Pypi archive
doCheck = false;
meta = with lib; {
description = "Python bindings for FUSE";
homepage = "https://github.com/libfuse/python-fuse";
license = licenses.lgpl21;
maintainers = with maintainers; [ psyanticy ];
};
}