nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3.pkgs.puremagic: init at 1.10

+31
+29
pkgs/development/python-modules/puremagic/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi 2 + }: 3 + 4 + buildPythonPackage rec { 5 + pname = "puremagic"; 6 + version = "1.10"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "025ih5q1qa40x88j7ngsdr5sf0dp400kwlfzz60i7v6fh0ms1zkg"; 11 + }; 12 + 13 + postPatch = '' 14 + substituteInPlace setup.py \ 15 + --replace '"argparse"' "" 16 + ''; 17 + 18 + # test data not included on pypi 19 + doCheck = false; 20 + 21 + pythonImportsCheck = [ "puremagic" ]; 22 + 23 + meta = with lib; { 24 + description = "Pure python implementation of magic file detection"; 25 + license = licenses.mit; 26 + homepage = "https://github.com/cdgriffith/puremagic"; 27 + maintainers = with maintainers; [ globin ]; 28 + }; 29 + }
+2
pkgs/top-level/python-packages.nix
··· 5275 5275 5276 5276 pure-python-adb-homeassistant = callPackage ../development/python-modules/pure-python-adb-homeassistant { }; 5277 5277 5278 + puremagic = callPackage ../development/python-modules/puremagic { }; 5279 + 5278 5280 purl = callPackage ../development/python-modules/purl { }; 5279 5281 5280 5282 pushbullet = callPackage ../development/python-modules/pushbullet { };