summary refs log tree commit diff
path: root/pkgs/development/python-modules/unidiff/default.nix
blob: 8fe8a760cf09a5e9cc2638617c64de75cc2f34d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, python }:

buildPythonPackage rec {
  pname = "unidiff";
  version = "0.7.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2bbcbc986e1fb97f04b1d7b864aa6002ab02f4d8a996bf03aa6e5a81447d1fc5";
  };

  checkPhase = ''
    ${python.interpreter} -m unittest discover -s tests/
  '';

  pythonImportsCheck = [ "unidiff" ];

  meta = with lib; {
    description = "Unified diff python parsing/metadata extraction library";
    homepage = "https://github.com/matiasb/python-unidiff";
    changelog = "https://github.com/matiasb/python-unidiff/raw/v${version}/HISTORY";
    license = licenses.mit;
    maintainers = [ maintainers.marsam ];
  };
}